python user input to tuple

29

tuple(map(int,raw_input().split(',')))
tuple(int(x.strip()) for x in raw_input().split(','))

Comments

Submit
0 Comments